home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-04
/
bipl.zip
/
PROCS.ZIP
/
TAB2LIST.ICN
< prev
next >
Wrap
Text File
|
1992-09-28
|
902b
|
39 lines
############################################################################
#
# File: tab2list.icn
#
# Subject: Procedure to insert tab-separated strings in list
#
# Author: Ralph E. Griswold
#
# Date: May 21, 1992
#
###########################################################################
#
# This procedure to takes tab-separated strings and inserts them
# into a list.
#
# Vertical tabs in strings are converted to carriage returns.
#
# (Works for lists too.)
#
############################################################################
#
# See also: list2tab.icn, tab2rec.icn, rec2tab.icn
#
############################################################################
procedure tab2list(s)
local L
L := []
s ? {
while put(L, map(tab(upto('\t') | 0), "\v", "\n")) do
move(1) | break
}
return L
end